/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #4B006E;
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #4B006E;
    flex-wrap: wrap; /* Wrap for smaller screens */
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

.nav a:hover {
    text-decoration: underline;
}

.login-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
}

.login-button:hover {
    background-color: white;
    color: #4B006E;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    flex-wrap: wrap; /* Stack content for smaller screens */
}

.hero-content {
    max-width: 50%;
    flex: 1 1 300px;
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: white;
    margin: 10px;
    color: #4B006E;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #FFD700;
    color: #4B006E;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Features Section */
.features-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #F3E5F5;
    padding: 20px 0;
    color: #4B006E;
}

.feature {
    text-align: center;
    margin: 20px;
    flex: 1 1 150px; /* Flexbox for responsiveness */
}

.feature img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.feature a {
    color: #4B006E;
    text-decoration: none;
    font-weight: bold;
}

.feature a:hover {
    text-decoration: underline;
}

/* Savings Section */
.savings-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    background-color: #FFE4F0;
    color: #4B006E;
    flex-wrap: wrap; /* Wrap content for smaller screens */
}

.savings-content {
    max-width: 50%;
    flex: 1 1 300px;
}

.savings-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #4B006E;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .features-section {
        flex-direction: column;
    }

    .savings-section {
        flex-direction: column;
    }
}
/* Reset and Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background-color: #f8f8f8;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.logo img {
    max-width: 120px;
    height: auto;
}

.nav {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav a:hover {
    background-color: #0078d7;
    color: #fff;
}

.login-button {
    background-color: #0078d700;
    color: white;
    border: 2px solid #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .hamburger-menu {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 16px;
    }

    .nav a {
        padding: 10px;
        text-align: left;
    }
}
.header {
    display: flex
;
    justify-content: space-around;
    align-items: flex-end;
    padding: 10px 20px;
    background-color: #4B006E;
    align-content: flex-start;
    flex-direction: row;
}